home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995…tember: Reference Library / Dev.CD Sep 95 RL / Dev.CD Sep 95 RL.toast / mac / Technical Documentation / develop / develop Issue 21 code / Hierarchical Lists / CMyHierListBox.h < prev    next >
Encoding:
Text File  |  1994-07-02  |  577 b   |  24 lines  |  [TEXT/MMCC]

  1. // ===========================================================================
  2. //    CMyListBox.h            ©1994 Jan Bruyndonckx All rights reserved.
  3. //    v1.0 18/6/94
  4. //
  5. //    A hierarchical demo listbox
  6. //
  7. // ===========================================================================
  8.  
  9. #include "CTwistDownListBox.h"
  10.  
  11. class CMyHierListBox : public CTwistDownListBox {
  12.  
  13.   public:
  14.       enum {
  15.           classID    = 'Hlst'
  16.       } ;
  17.       
  18.       static CMyHierListBox*    CreateFromStream(LStream *inStream);
  19.  
  20.     CMyHierListBox (LStream *inStream);
  21.  
  22.   protected:
  23.     virtual void    ExpandElement (const Cell theCell) ;
  24. } ;